strconv.floatInfo.bias (field)
17 uses
strconv (current package)
atof.go#L321: exp = flt.bias
atof.go#L334: exp = flt.bias
atof.go#L367: if exp < flt.bias+1 {
atof.go#L368: n := flt.bias + 1 - exp
atof.go#L373: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L385: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L392: exp = flt.bias
atof.go#L399: exp = 1<<flt.expbits - 1 + flt.bias
atof.go#L405: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
atof.go#L500: maxExp := 1<<flt.expbits + flt.bias - 2
atof.go#L501: minExp := flt.bias + 1
atof.go#L544: exp = flt.bias
atof.go#L554: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
ftoa.go#L19: bias int
ftoa.go#L97: exp += flt.bias
ftoa.go#L257: minexp := flt.bias + 1 // minimum possible exponent
ftoaryu.go#L353: if mant != 1<<flt.mantbits || exp == flt.bias+1-int(flt.mantbits) {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |